X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=ChangeLog;h=074e964de02f50cdbe52e759b01238475f4d30dc;hb=02b26babf827c0e7a33c6e1c63b9bff0729d3224;hp=8ccc969aeeaa971ca51fc2ce0a45f44ec168f4d1;hpb=0886c3c8d7163deacd123917b017be78e367e9e7;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/ChangeLog b/ChangeLog index 8ccc969..074e964 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,349 @@ +2006-01-31 Bill Haneman + + * 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 + + * 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 + + * idl/Accessibility_Selector.idl: Added to the cvs repository. + + * configure.in: Revved to 1.7.3. + +2006-01-17 Bill Haneman + + * configure.in: Revved to 1.7.2, re-dist to include docs. + +2006-01-09 Bill Haneman + + * 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 + + * 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 + + * configure.in: Add zh_HK, zh_TW to ALL_LINGUAS + (yes I know that's useless) + +2005-11-20 Theppitak Karoonboonyanan + + * configure.in: Added "th" (Thai) to ALL_LINGUAS. + +2005-11-17 Michael Meeks + + * atk-bridge/bridge.c (spi_atk_emit_eventv): + urgh-fix embarassing typo. + +2005-11-16 Michael Meeks + + * 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 + + * atk-bridge/bridge.c: (spi_atk_bridge_signal_listener): + * cspi/spi_streamablecontent.c: (AccessibleStreamableContent_seek): + * registryd/deviceeventcontroller.c: + (spi_controller_notify_mouselisteners), + (impl_generate_keyboard_event): + * test/screen-review-test.c: (chunk_bounds_within): + * test/test-simple.c: (test_desktop): Remove some unused code + and fix compiler warnings. Closes bug #320049. + +2005-10-27 Bill Haneman + + * registryd/deviceeventcontroller.c: + (spi_controller_notify_keylisteners): Check + to make sure the event listener has requested 'preemptive' + status before pre-empting an event. + +2005-08-29 Bill Haneman + + * configure.in, README, NEWS: Release 1.6.5. + +2005-07-25 Matthias Clasen + + * test/window-listener-test.c: Fix a printf + format error. (#169453) + +2005-07-15 Bill Haneman + + * tests/test-simple.c: + (key_listener_cb): Ensure that the keystring is dup'ed instead of + relying on the old string from the key event hanging around after + the event handler returns. Fixes broken 'make check'. + +2005-06-06 Swapnil Hajare + + * Added Marathi (mr_IN) translations. + +2005-05-27 Kjartan Maraas + + * cspi/bonobo/cspi-bonobo-listener.c: + (cspi_event_list_remove_by_cb): Fix the build. + +2005-05-26 Michael Meeks + + * cspi/bonobo/cspi-bonobo-listener.c + (cspi_event_list_remove_by_cb): actually filter by callback. + +2005-05-25 Bill Haneman + + * registryd/registry.c (remove_listener_cb): + Make deregistration filter rules match the event emission rules. + +2005-05-25 Michael Meeks + + * registryd/registry.c (remove_listener_cb), + (impl_accessibility_registry_deregister_global_event_listener), + (impl_accessibility_registry_deregister_global_event_listener_all): + pass a closure to the remove callback to filter listeners more + accurately on remove. + +2005-04-05 Bill Haneman + + * configure.in: Revved to 1.6.4. + Remember to put quotes around XEVIE_LIBS assignment. + Fixed one of tertiary AC_CHECK_HEADER tests for XEvie. + Fixes bug #303694. + + * tests/event-listener-test.c: Tweaked the tests - more detail + from caret events, and some interrogation of AccessibleText APIs. + Commented-out the bounds-changed events by default, since they can + be very noisy. + +2005-04-14 Kjartan Maraas + + * atk-bridge/bridge.c: (spi_atk_emit_eventv): Plug a leak. + * cspi/bonobo/cspi-bonobo-listener.c: (cspi_device_event): + Same here. Closes bug #167806 + +2005-04-05 Bill Haneman + + * atk-bridge/bridge.c: + (spi_atk_bridge_signal_listener): + Free the any._value if any._release is TRUE, + since the ORB won't do it for us in this case + [because this method is not a skel]. + Fix for bug #168679. + +2005-03-30 Steve Murphy + + * configure.in: Added "rw" to ALL_LINGUAS. + +2005-03-29 Bill Haneman + + * configure.in: Improved check for HAVE_XEVIE, to detect + presence on XOrg, where -lXevie is a separate library. + +2005-03-08 Bill Haneman + + * configure.in, NEWS, README: Revved to 1.6.3. + +2005-02-16 Adi Attar + + * configure.in: Added "xh" to ALL_LINGUAS. + +2005-02-07 Bill Haneman + + * atk-bridge/bridge.c: + (atk_bridge_init): Added missing NULL in g_strconcat(), + also check for symlink before logging to + insecure directory. Thanks to meissner@suse.de. + +2005-01-25 Padraig O'Briain + + * tests/login-helper-server-test.c: Add return call to main + function. Patch from Chris Lahey. Fixes bug #165129. + 2004-12-20 Padraig O'Briain * cspi/spi.h: Add description for SPI_RELATION_SUBWINDOW_OF.