X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=ChangeLog;h=4466084d67db94c47ba68acd7dfed694c059d46d;hb=7ff7c0d0b863f7346f21e03b6d170e8c7c6f9878;hp=3b59f81eced601ffc6cbfd108860de072c541ba2;hpb=ad6c1828a3c1d7bf67f23167a7e7aa8208f6f133;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/ChangeLog b/ChangeLog index 3b59f81..4466084 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,188 @@ +<2001-10-09 Bill Haneman + + * at-bridge/bridge.c: + Re-worked listeners for toolkit events, now we have signal + and property listeners. Added a private method + register_atk_event_listeners(), which registers with the + various atk and gtk signals we need to monitor in order to emit + our at-spi events. + Added emission hook for AtkObject:property-change events, to + support the 'property listeners'. + Fixed some alloc()s of Accessibility_Event structs to use CORBA + allocation. + + * cspi/spi-util.c: added methods spi_warn_ev and spi_check_ev, + which emit warnings and exit, respectively, if CORBA errors occur + during remote calls, and we now use these methods to check most of + our CORBA calls in the C bindings. + + * cspi/spi_accessible.c: + Changed AccessibleSelection_refSelectedChild() to + AccessibleSelection_getSelectedChild(), since all our cspi 'gets' + now increment refcounts. + + * cspi/spi_component.c: + Fixed some long pointer casts (dangerous!) to pass pointers to + CORBA_longs of the proper type to the CORBA stubs, and copy the + data into the longs that were passed into the C bindings code. + + * at-bridge/bridge.c: + + * libspi/accessible.c: + Removed ATK_IS_HYPERLINK() query, since AtkObjects are never + hyperlinks, AtkHyperlink is an object type. + + * libspi/application.c: + Added various conversions to and from "generic" event types and + atk-specific types; this is really part of the 'bridge' + implementation but is valid for all AtkObject-based accessibility + implementations. + + * libspi/editabletext.c: + Fixed nasty bug wherein editable text's finalize method was + unref'ing tha AtkObject reference that the text parent class was + about to unref _again_. There was also a nasty inheritance bug + that meant that the AccessibleEditableText class was corrupt. + + * libspi/selection.c: + Provided implementations for some selection API that was broken. + + * idl/Application.idl: + Added registerObjectEventListener () method. + + * THROUGHOUT: + Fixed a number of return values that were Bonobo_Unknowns from + bonobo_object_corba_objref(), which I + forgot to dup before returning. Changed instances of + bonobo_object_corba_objref (bonobo_object(o)) to + BONOBO_OBJREF(o), for concision and clarity. + +<2001-10-13 Louise Miller + + * idl/Accessible.idl, idl/Application.idl, idl/Desktop.idl, + idl/Event.idl, idl/Registry.idl + Changed these files to include Bonobo_Unknown.idl instead + of Bonobo.idl + +<2001-09-10 Marc Mulcahy + + * idl/Accessible.idl: + Added 'isEqual (Accessible *object)' + method for Accessible. (Not Yet Implemented). + + * idl/Registry.idl: + Changed signature of registerKeystrokeListener() to + take a KeySet and KeyEventSeq so that specific keys and event + types could be requested for monitoring, and added a flag + is_synchronous so that either synchronous or asynchronous + notification could be requested. (However this is not all + implemented yet). This also meant adding two new typedefs, + KeyEventSeq and KeySet. + + * idl/Relation.idl: + Added two new relations, RELATION_TOOLTIP_FOR and + RELATION_LEAFNODE_OF. + + * idl/State.idl: + Added new state, STATE_HAS_TOOLTIP. + + * libspi/text.c, editabletext.c: + Added new assertions to all casts of bonobo-objects from + CORBA servants, to prevent Text API calls on non-text objects. + Changed suspect casts of int-pointer types, so that we + always send a valid CORBA_long pointer to the CORBA APIs that use + in/out long parameters. We then have to copy from the CORBA_long + into the regular long or int for return to the C bindings, or + vice-versa when returning parameters from ATK calls to the bonobo wrappers. + + * cspi/spi_text.c: + * libspi/deviceeventcontroller.c: + Cleaned these sources up. + * idl/Text.idl: + Changed return type for getCharacterAtOffset to + CORBA_unsigned_long, to allow for 32-bit characters. + + +<2001-10-08 Bill Haneman + + * util/Makefile.am: + * idl/Makefile.am: + Fixed 'make dist' so that distro compiles... + * libspi/keymasks.h: + new file. + * cspi/spi-listener.c: + KeystrokeListenerCB now returns a boolean. + * cspi/spi.h: + Added KeyEventType struct, and KeyStroke. + Also added createKeystrokeListener(), + KeystrokeListener_addCallback(), + KeystrokeListener_removeCallback(), and added a keymask to + registerKeystrokeListener(). + * cspi/spi_accessible.c: + Changed numerous return types for interfaces from + AccessibleComponent to Accessible; this was + probably a cut-and-paste error. + * cspi/spi_event.c: + Implementations of new KeystrokeListener api (from spi.h, + above). + * idl/Registry.idl: + Changes to key modifier mapping. + Created ControllerEventMask struct. + Made DeviceEventController derive from Bonobo::Unknown. + * idl/Text.idl: + Removed TEXT_BOUNDARY_CURSOR_POS boundary type. + * libspi/deviceeventcontroller.c: + Added a number of new internal (private) methods. + * libspi/editabletext.c: + * libspi/editabletext.h: + Fixed a number of bugs related to the fact that + editabletext inherits from text. Fixed the EditableText struct, + the init() call, and use correct casts when calling Text methods + from an EditableText object. Removed (duplicate) atko from the + EditableText structure, we use the one in the parent Text + structure via the casts mentioned above. + * libspi/keystrokelistener.[ch]: + * libspi/registry.c: + Changes in support of keyboard handling (above). + + Keyboard handling, though partly functional, is still not + recommended for at-spi client use as there is considerable + work yet to be done. + + * libspi/text.c: + Changed some places where pointers to various int types + are cast to be pointers to CORBA_long types and vice-versa: + pointer casting is not safe so we pass pointers of the correct + types and then cast the result before putting it into the target + pointers. + + * libspi/text.h: minor typos corrected. + * test/simple-at.c: + We now speak not only the name of a Text element, but the + first sentence of its content, when it receives focus. + I also changed the text compression to 75% from 50%. + * util/Accessibility_Util.server.in: + Changed the default magnifier type to be a 3x vertical + splitscreen magnifier (was previously a 2x horizontal one). + +<2001-10-03 Bill Haneman + + * libspi/keystrokelistener.h: + * libspi/keystrokelistener.c: + Initial functional implementations of KeystrokeListener. + * idl/Registry.idl: + +<2001-10-05 Marc Mulcahy + + Fixed string handling for NULL strings in libspi. + Added spi_freeString to free strings returned by C bindings. + <2001-09-30 Bill Haneman * libspi/keystrokelistener.h: