Reinstated translation; removed Accessibility_Registry.server from dist
[platform/core/uifw/at-spi2-atk.git] / ChangeLog
index 3c88144..5076016 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,242 @@
+2006-02-20  Bill Haneman <billh@gnome.org>
+
+       * configure.in: Rev to 1.7.5.
+       Reinstate localization of this module.  Thanks for Rodney
+       Dawes for fixing my patch.
+
+       * registryd/Makefile.am: Remove Accessibility_Registry.server 
+       from dist, since it needs to be re-created at configure time.
+       Fixes bug #3331484.
+       
+2006-01-31  Bill Haneman <billh@gnome.org>
+
+       * configure.in: Rev to 1.7.4 (to include build fix below).
+       
+       * idl/Makefile.am: Include Selector.idl in dist.
+       Fixes bug #328859.
+
+       * cspi/spi_event.c:
+       (cspi_internal_event_get_object): Handle case where
+       "object" isn't present, i.e. CORBA_TC_Object doesn't match
+       the EventDetails data.
+       (cspi_internal_event_get_text): Handle NULL string.
+       (cspi_internal_event_get_rect): Handle missing/empty rect
+       data, Accessibility_TC_RectBounds doesn't match any_data.
+
+2006-01-30  Bill Haneman <billh@gnome.org>
+
+       * Released 1.7.3.
+
+       * atk-bridge/bridge.c:
+       (spi_atk_emit_eventv): Check for SPI_REMOTE_OBJECT 
+       interface and use that when instantiating a new source
+       accessible.  Better fix for bug #321814.
+       
+2006-01-27  Bill Haneman <billh@gnome.org>
+
+       * idl/Accessibility_Selector.idl: Added to the cvs repository.
+
+       * configure.in: Revved to 1.7.3.
+       
+2006-01-17  Bill Haneman <billh@gnome.org>
+
+       * configure.in: Revved to 1.7.2, re-dist to include docs.
+
+2006-01-09  Bill Haneman <billh@gnome.org>
+
+       * configure.in: Removed po/Makefile.in inclusion, we do not need
+       it.  Revved to 1.7.0.
+
+       * idl/Accessibility.idl: Improved documentation here, and for all
+       IDL in the 'GNOME::Accessibility' namespace.
+
+       * idl/Accessibility_Accessible.idl:
+       (LOCALE_TYPE): Added enum.
+       (AttributeSet): New, for returning multiple name/value attribute pairs.
+       (RoleSet): New, sequence of Roles, to be used in upcoming
+       Collection API.
+       (getAttributes): New API, allows retrieval of name/value pair
+       annotations for all kinds of Accessible objects.  C.f. 
+       Text:getAttributes, which is only for typographic/textual/semantic tags in
+       text content.
+       (getApplication): New, retrieves the host/containing Application
+       instance for an object (without having to walk up the whole tree).
+
+       * idl/Accessibility_Component.idl:
+       (getAlpha): New method, returns the alpha blending (aka 'opacity')
+       value for an object.  An alpha of 1.0 is fully opaque, 0.0 is
+       fully transparent.
+
+       * idl/Accessibility_Event.idl:
+       (EventDetails): New struct definition, for encapsulating
+       commonly-queried information about emitted events.  The use of
+       this structure in emitted events (in the 'any' member of
+       Accessibility_Event) should greatly reduce the number of
+       client-server roundtrips necessary.
+
+       * idl/Accessibility_Image.idl:
+       (imageLocale): New, a readonly attribute indicating the POSIX 
+       LC_MESSAGES locale of the image and associated Alt/descriptive
+       text.
+
+       * idl/Accessibility_Relation.idl:
+       (RELATION_PARENT_WINDOW_OF): Include, as complement to
+       RELATION_POPUP_FOR.
+
+       * idl/Accessibility_Role.idl:
+       (ROLE_ENTRY, ROLE_CHART, ROLE_CAPTION, ROLE_DOCUMENT_FRAME)
+       (ROLE_HEADING, ROLE_PAGE, ROLE_SECTION): New roles for
+       complex document and form support.
+
+       * idl/Accessibility_State.idl:
+       (STATE_REQUIRED, STATE_TRUNCATED, STATE_ANIMATED)
+       (STATE_INVALID_ENTRY, STATE_SUPPORTS_AUTOCOMPLETION)
+       (STATE_SELECTABLE_TEXT, STATE_IS_DEFAULT): New states,
+       for support of complex documents and forms.
+
+       * idl/Accessibility_StreamableContent.idl:
+       (SeekType, IOError, NotSupported, NoPermission): New enum and exceptions, to
+       allow old bonobo-stream interfaces to be deprecated in the next
+       release.
+
+       * idl/Accessibility_Text.idl:
+       (getAttributeValue): New method, allows query-by-name of single
+       attributes.
+
+       * libspi/accessible.c:
+       Added support for new roles.  Implemented new methods
+       (impl_accessibility_accessible_get_application): New
+       (impl_accessibility_accessible_get_attributes): New
+
+       * libspi/component.c:
+       (impl_accessibility_component_get_alpha): New.
+
+       * libspi/image.c:
+       (impl_accessibility_image_get_locale): New.
+
+       * libspi/relation.c: Added support for new relation type.
+
+       * libspi/stateset.c: Added support for new state types.
+
+       * libspi/text.c: 
+       (impl_getAttributeValue): New.
+       
+       * libspi/util.c:
+       New prototypes for private methods
+       spi_init_any_nil,
+       spi_init_any_object, spi_init_any_string,
+       spi_init_any_rect.
+       
+       * libspi/spi_event.c: 
+       Use EventDetails in the event emission methods.
+
+       * cspi/spi-private.h:
+       (cspi_role_from_spi_role): Expose this adapter method, since
+       we need it in the bridge (see below).
+
+       * cspi/spi.h:
+       (AccessibleEvent_getSourceName):
+       (AccessibleEvent_getSourceRole):
+       (AccessibleEvent_getSourceApplication):
+       (AccessibleEvent_getSourceDetails):
+       New methods for interrogating/demarshalling
+       event details (i.e. source's accessible name, role, 
+       and host app).
+
+       * cspi/spi_accessible.c: Use cspi_role_from_spi_role.
+       Make use of the new EventDetails struct in events, if present.
+       (AccessibleEvent_getSourceName)
+       (AccessibleEvent_getSourceRole)
+       (AccessibleEvent_getSourceApplication)
+       (AccessibleEvent_getSourceDetails): Implement the newly exposed
+       methods from spi.h.
+       (Accessible_getAttributes): New, wraps
+       Accessibility_Accessible_getAttributes.
+       (Accessible_getHostApplication): New, wraps
+       Accessibility_Accessible_getApplication.
+
+       * cspi/spi_image.c:
+       (AccessibleImage_getImageLocale): New wrapper for
+       Accessibility_Image_get_imageLocale.
+
+       * cspi/spi_component.c:
+       (AccessibleComponent_getAlpha): New wrapper for
+       Accessibility_Component_getAlpha.
+       
+       * atk-bridge/bridge.c:
+       Use new prototyped for init_any methods.
+       (spi_atk_bridge_init_nil, spi_atk_bridge_init_object)
+       (spi_atk_bridge_init_string, spi_atk_bridge_init_rect)
+       (spi_atk_bridge_init_base): Wrappers
+       for spi_init_any_* methods, due to refactor; include extended
+       information in the Accessibility_EventDetails struct, for instance
+       accessible-name, Role, and containing Application.
+
+       * registryd/registry.c: 
+       Use new event emission (with EventDetails).
+       
+       * registryd/deviceeventcontroller.c:
+       Use new event emission (with EventDetails).
+
+2006-01-09  Kjartan Maraas <kmaraas@gnome.org>
+
+       * configure.in: Generate po/Makefile.in
+       * cspi/spi_main.c: Add #ifdef PRINT_LEAKS around a function
+       * cspi/spi_streamablecontent.c: 
+       (accessible_bonobo_stream_client_seek),
+       (AccessibleStreamableContent_seek): Remove unused vars.
+       * libspi/application.c: Missing header.
+       * libspi/text.c: (impl_getDefaultAttributes): Unused vars
+       * login-helper/login-helper.c: (login_helper_finalize),
+       (login_helper_init): Remove unused stuff
+       * registryd/deviceeventcontroller.c: (spi_dec_replace_map_keysym),
+       (spi_dec_init_mouse_listener), (is_key_released): Remove unused vars
+       and surround some with #ifdef GRAB_BUTTON.
+       * test/event-listener-test.c: (main), (report_event),
+       (report_caret_event), (report_detail_event),
+       (report_detail1_event), (report_bounds_event), (report_text_event),
+       (report_text_selection_event),
+       (report_active_descendant_changed_event),
+       (report_children_changed_event), (report_name_changed_event),
+       (report_description_changed_event), (report_parent_changed_event),
+       (report_window_event), (report_table_summary_event),
+       (report_table_header_event), (report_table_caption_event),
+       (report_table_row_description_event),
+       (report_table_column_description_event), (timing_test_event):
+       Remove a bunch of unused variables and fix a slew of format specifiers
+       * test/key-listener-test.c: (report_all_key_event): Format specifier
+       * test/keypad-test.c: (print_key_event): Same
+       * test/login-helper-server-test.c: (main): Include gtkmain.h and remove
+       unused var.
+       * test/screen-review-test.c: (main), (print_chunk_debug),
+       (review_buffer_get_text_chunk), (debug_chunk_list),
+       (string_guess_clip), (text_chunk_get_clipped_string),
+       (text_chunk_list_to_string), (get_screen_review_line_at):
+       Remove unused variables and fix format specifiers.
+       * test/simple-at.c: (report_text_event): Format specifier fix.
+       * test/stress-test.c: (main): Remove unused var.
+
+2005-12-29  Abel Cheung  <maddog@linuxhall.org>
+
+       * configure.in: Add zh_HK, zh_TW to ALL_LINGUAS
+       (yes I know that's useless)
+
+2005-11-20  Theppitak Karoonboonyanan  <thep@linux.thai.net>
+
+       * configure.in: Added "th" (Thai) to ALL_LINGUAS.
+
+2005-11-17  Michael Meeks  <michael.meeks@novell.com>
+
+       * atk-bridge/bridge.c (spi_atk_emit_eventv): 
+       urgh-fix embarassing typo.
+
+2005-11-16  Michael Meeks  <michael.meeks@novell.com>
+
+       * atk-bridge/bridge.c (spi_atk_emit_eventv):
+       do a faster, less problematic _unref call on this local
+       object, rather than a slower (potentially cross-thread
+       complicated) CORBA call.
+
 2005-11-02  Kjartan Maraas  <kmaraas@gnome.org>
 
        * atk-bridge/bridge.c: (spi_atk_bridge_signal_listener):
@@ -6,7 +245,7 @@
        (spi_controller_notify_mouselisteners),
        (impl_generate_keyboard_event):
        * test/screen-review-test.c: (chunk_bounds_within):
-       * test/test-simple.c: (test_desktop): Remove lots of unused code
+       * test/test-simple.c: (test_desktop): Remove some unused code
        and fix compiler warnings. Closes bug #320049.
 
 2005-10-27 Bill Haneman <bill.haneman@sun.com>