X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=ChangeLog;h=236d2d7c54651cacb9b3716a5106fa4c34ca6241;hb=26086bace29800a65b3cd92d405ec006bb10f101;hp=96a191886d0e4ad26dc3c4ef6b8041a65e54b051;hpb=6fcbfbc754f3756e1af74dd9d112c1e583af2df9;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/ChangeLog b/ChangeLog index 96a1918..236d2d7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,14 +1,366 @@ -2003-01-15 Padraig O'Briain + + * configure.in: Revved micro version to 1.3.1 (because of build fix). + +2003-05-02 Frederic Crozat + + * libspi/Makefile.am: + Ensure headers are generated before being used by c sources. + +2003-05-01 Bill Haneman + + * configure.in: + Simplified lt versioning rules. + Incremented version to 1.3.0, to indicate that we're on the + unstable branch now. + +2003-04-29 Padraig O'Briain + + * docs/reference/cspi/Makefile.am, docs/reference/idl/Makefile.am: + Add MKDB_OPTIONS=--outtput-format=xml + + * docs/reference/cspi/at-spi-cspi-docs.sgml + docs/reference/idl/at-spi-idl-docs.sgml: + Convert to Docbook XML. + + This fixes bug #111793. + +2003-04-25 Padraig O'Briain + + * cspi/spi-listener.h: Add documentation for AccessibleDeviceEventType, + AcccessibleKeyEventType, AccessibleKeyMaskType. + + * cspi/spi-roletypes.h: Update documentation for AccessibleRole. + + * cspi/state-types.h: Add documentation for AccessibleState. + + * cspi/spi.h: Add documentation for AccessibleTextBoundaryType, + AccessibleTextClipType, AccessibleRelationType, AccessibleCoordType, + AccessibleKeySynthType, AccessibleKeyListenerSyncType, + AccessibleComponentLayer. + + * cspi/spi_event.c, cspi/spi_registry.c, cspi/spi_text.c: Fix bugs + in documentation. + + * docs/reference/cspi/at-spi-cspi-sections.txt: Add undefined symbols. + + * docs/reference/cspi/tmpl/spi_registry.sgml: Add description of + Accessible. Add description of AccessibleEvent, + AccessibleEventListenerCB. + + * docs/reference/cspi/tmpl/spi_event.sgml: Update with extra + documentation. + + * docs/reference/cspi/tmpl/spi_registry.sgml: Update with extra + documentation. Add description of AccessibleKeystrokeListenerCB, + AccessibleKeyEventMask, AccessibleModifierMaskType, + AccessibleKeyMaskType, AccessibleKeystroke, AccessibleDeviceEvent, + AccessibleDeviceEventMask, AccessibleDeviceListenerCB. + + * docs/reference/cspi/tmpl/spi_stateset.sgml: Add description of + AccessibleStateSet. + + * docs/reference/cspi/tmpl/spi_text.sgml: Update with extra + documentation. + + This fixes bug #104730. + +2003-04-24 Padraig O'Briain + + * atk-bridge/bridge.c (spi_init_keystroke_from_atk_key_event): + Set is_text field of Accessibility_DeviceEvent data structure. + + * cspi/bonobo/cspi-bonobo-listener.c (cspi_device_event): Set + is-text field of AccessibleDeviceEvent data structure. + + This addresses part of bug #108666. + + * registryd/devcideeventcontroller.c: Unset debug option. + +2003-04-14 Padraig O'Briain + + * cspi/accessible.c: + (cpi_initial_relation_type_table): New function which initializes + mapping between Accessibility_RelationType and AccessibleRelationType. + (cspi_relation_type_from_spi_relation_type): New function which + translates an Accessibility_RelationType into an AccessibleRelationType. + (AccessibleRelation_getRelationType): Use + cpi_relation_type_get_spi_relation_type to return correct value. + (spi_state_to_corba): Return correct type for default case. + + * cspi/spi_registry.c (SPI_registerAccessibleKeyStrokeListener): + Use Accessibility_EventType instead of Accessibility_KeyEventType. + + * cspi/cspi-bonobo-listener.c: + Remove semicolon after BONOBO_TYPE_FUNC. Add casts to avoid compiler + warnings. + + * libspi/accessible.c, libspi/action.c, libspi/application.c, + libspi/base.c, libspi/component.c, libspi.devicelistener.c, + libspi/editabletable.c, libspi/hyperlink.c, libspi/hypertext.c, + libspi/image.c, libspi/listener.c, libspi/selection.c, + libspi/stateset.c, libspi/table, libspi/text.c, libspi/value.c, + registryd/desktop.c, registryd/registry.c: + Remove semicolon after BONOBO_TYPE_FUNC_FULL. + + * libspi/eventlistener.c + Remove semicolon after BONOBO_TYPE_FUNC. + + * libspi/relation.c: + Remove semicolon after BONOBO_TYPE_FUNC_FULL. + (spi_init_relation_type_table): Initialize using correct type. + + * registryd/desktop.c: + Remove semicolon after BONOBO_TYPE_FUNC_FULL. + (spi_keystroke_from_x_key_event): Use Accessibility_EventType instead + of Accessibility_KeyEventType. + + * test/key-listener-test.c (report_tab_key_event): Use fprintf + instead of g_print. + + * tests/simple-at.c, tests/screen-review-test.c: + Add include for . + + * tests.stress-test.c: + Add includes for and + + These changes fix compiler warnings when using FORTE compiler on + Solaris; fixes bug #107479. + + +2003-04-10 Bill Haneman + + + * configure.in: revved to 1.1.10 + + * libspi/keymasks.h: + (SPI_KEYMASK_NUMLOCK): Added. + + * registryd/deviceeventcontroller.c: + (spi_key_event_matches_listener): AND with a smaller + bitmask (as we should). + (spi_dec_translate_mask): + New method, sets the virtual NumLock modifier bit + if numlock is on. Eventually it can handle other virtual + modifier bits if needed, or other marshalling from + at-spi modifier masks to platform (X) masks. + (spi_dec_key_listener_new): + Call spi_dec_translate_mask to set up virtual mod bits + in the 'mask' field when creating a new listener struct. + (spi_dec_emit_modifier_event): + Set the virtual (i.e. NumLock) bits before emitting event. + (spi_controller_register_with_devices): + Query for the NumLock modifier 'physical' bit if Xkb is + present, for use in above methods. + + Fix for 107261. + +2003-04-10 Bill Haneman + + * registryd/deviceeventcontroller.c: + (spi_keystroke_from_x_key_event): + Instead of checking to see if the keysym is + printable, check the string from XLookupString + if available, get the first unicode character from it, + and call g_unichar_isprint to determine whether the + is_text flag should be TRUE or FALSE. + + Fix for bug 110419. + +2003-04-02 Padraig O'Briain + + * atk-bridge/bridge.c: Add support for extended events + * cspi/spi_event.c: Add documentation and implementation for + extended events. + * tests/event-listener-test.c: Add tests for extended events. + + This fixes bugs #100424 and #100426. + +2003-04-02 Padraig O'Briain + + * configure.in: Add 100 to AT_SPI_BINARY_AGE and update calculation + of LT_CURRENT. This fixes bug #89350. + +2003-04-01 Padraig O'Briain + + * atk-bridge/bridge.c (spi_bridge_signal_listener): Add check for + number of signal parameter values before accessing them. This fixes + bug #109626. + +2003-04-01 Bill Haneman + + * configure.in: Fixed duplicate inclusion of -lspi. + * branched for gnome-2-2/HEAD. + [created tag "gnome-2-2"] + +2003-03-07 Bill Haneman + + * configure.in: 1.1.9 release. + * NEWS: updated. + +2003-03-07 Bill Haneman + + [needed by GOK, to fix bugs 107985 and 107988] + * registryd/deviceeventcontroller.c: + (spi_dec_clear_unlatch_pending): + New method, unsets the 'unlatch' mask for XkbStateNotifyEvents. + (spi_dec_set_unlatch_pending):Revised DEBUG comment. + (spi_dec_init_mouse_listener):Emit warning if mouse button + passive grab fails. + (spi_device_event_controller_forward_mouse_event): + Removed unnecessary parens from a conditional. + (global_filter_fn):Added TODO comment. + (impl_generate_keyboard_event): + Cancel a pending relatch if a 'delatching' key was + synthesized. + +2003-03-07 Padraig O'Briain + + * atk-bridge/bridge.c: + Change atk_signal_child_changed to atk_signal_children_changed. + Reorganize code in spi_atk_bridge_signal_listener(). + + * test/event-listener-test.c: + Add children_changed_listener and report_children_changed_event() + to test AccessibleChildEvent_getChildAccessible. + +2003-03-05 Padraig O'Briain + + * cspi/spi_event.c (cspi_internal_event_get_text): Change + g_strdup to CORBA_String_dup (bug #105291) + + * test/event-listener-test.c (report_text_event): Add call to + SPI_freeString. + +2003-02-28 Bill Haneman + + * registryd/deviceeventcontroller.c: + (spi_keystroke_from_x_key_event): + Fix string and keysym return codes to match modifier state. + [bug #107256] + +2003-02-28 Bill Haneman + + * registryd/deviceeventcontroller.c: + (spi_keystroke_from_x_key_event): + Fix segv due to improper use of isprint(c). [bug #107254] + +2003-02-24 Bill Haneman + + * cspi/spi_text.c: + (get_accessible_text_boundary_type): + Move default return value to (new) default case in switch. + (get_accessible_text_clip_type): + Move default return value to (new) default case in switch. + + * libspi/application.c: + (lookup_toolkit_event_for_name, reverse_lookup_name_for_toolkit_event): + Remove unused methods. + (impl_accessibility_application_register_object_event_listener): + Remove unused methods. + + * libspi/value.c: + Added #include of . + + * registryd/deviceeventcontroller.c: + (spi_dec_ungrab_mouse): Bracketed with #ifdefs, since + we don't currently use this method. + (spi_dec_init_mouse_listener): Don't call XkbGetMap unless + have_xkb is TRUE. + (impl_generate_key_event): + Remove unused variables. + (impl_generate_mouse_event): + Initialize button to zero, just in case we get an invalid + input. Added support for mouse buttons 4 and 5. + (spi_device_event_controller_new): + Removed unused variable declaration for 'private'. + (registry.h): + Added #include of + +2003-02-14 Padraig O'Briain + + * configure.in: Update to work when X is not installed in expected + location. Fixes bug #105836. + + * atk-bridge/bridge.c + (spi_atk_bridge_init_event_type_consts): Look up "link-selected" for + AtkHypertext + (spi_atk_register_event_listener): Add signal listener for + link-selected + (spi_atk_bridge_signal_listener): Event event when link-selected + signal is emitted. (bug #104622) + + * cspi/spi_event.c (cspi_internal_event_get_text): Call g_strdup() + on returned string. (bug #105291) + + * test/event-listener-test.c: Add test for link-selected. + +2003-02-14 Padraig O'Briain + + * atk-bridge/Makefile.am: Correct typo in previous commit. + +2003-02-13 Padraig O'Briain + + * atk-bridge/Makefile.am: Allow for build directory to be different + from source directory + + * registryd/Makefile.am: Allow for build directory to be different + from source directory + + Bug #104744. + +2003-01-29 Bill Haneman + + * cspi/Makefile.am: + Fixed dependencies for libcspi so that libspi gets pulled in + properly. Fixes 104741. + + * cspi/spi.h: + * cspi/spi_event.c: + Clean up inline docs a little. + +2003-01-27 Padraig O'Briain + + * registryd/desktop.c: Implement AccessibleComponent for SpiDesktop. + This is done by implementing AtkComponent for SpiAtkDesktop, which is + the AtkObject within an SpiDesktop. + This addresses bug #101524. + + * registryd/deviceeventcontroller.c (spi_device_event_controller_init): + Remove call to gdk_init(). + + * registryd/registry.c (spi_registry_init): Add call to gdk_init() + so that Display is set when SpiDesktop is created. + +2003-01-21 Padraig O'Briain + + * registryd/deviceeventcontroller.c: Add include of + This fixes bug #102830. + +2003-01-15 Padraig O'Briain + + * test/test-simple.c: Update to take account of fact that GailButton + now implements AtkText. + (create_text_window): Set name on AtkObject for GtkEntry. + (validate_accessible): Check accessible name before calling test_text(). + + * libspi/Makefile.am: Fix problem with building outside of source + directory. Bug #98120. + + * cpsi/spi_table.c (AccessibleTable_getNSelectedColumns): Fix + typo in documentation comments. Bug #94275. + +2003-01-15 Padraig O'Briain * libspi/text.c (impl_getBoundedRanges): Bug fix. -2003-01-10 Padraig O'Briain * libspi/text.c: Add includes to avoid compiler warnings on Solaris. (impl_getRangeExtents): Bug fix. -2002-12-17 Bill Haneman Fix for 100944, [API addition approved by Gman and murrayc].