X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=ChangeLog;h=5095a2b930e3f2649bd4cac369ba9db9c3ac244a;hb=bf567bd67bd03ad0a19ae0dedb6dc0af4d8bc79a;hp=6248c569e0be00a98bd1cbb3f3f05dc8c3836150;hpb=fd9ca58288d7ad03df3211689be19fd37a2e2cc4;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/ChangeLog b/ChangeLog index 6248c56..5095a2b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,262 @@ +2006-07-31 Bill Haneman + + * atk-bridge/bridge.c: + (spi_atk_emit_eventv): Fix the CORBA_free call which was + causing 64-bit troubles and memory leaks. + Special thanks to Alexander Larsson who finally seems to + have tracked down the problem, not just here but in + libspi/util.c... + + * libspi/util.c: + (spi_init_any_object): Make sure we copy the CORBA value + when initializing an object for passing as a CORBA_Any. + Bug #337239. + +2006-07-21 Bill Haneman + + * idl/Accessibility.idl: + Reverted pragma changes, this broke the build in some envs + including the Debian team's build and some tinderbox builds. + +2006-07-19 Bill Haneman modifications to patch from + + * configure.in: + Revved to 1.7.10, and edited the Xevie check (bug #319994). + + * idl/Accessibility.idl: + Reworked inclusion of Bonobo_Unknown.idl, to + avoid double-linking libs in the Bonobo environment. + Thanks to Michael Meeks for the workaround, see bug #313122. + + * registryd/deviceeventcontroller.c: + (spi_controller_notify_keylisteners): + Set the SPI_NUMLOCK_MASK bit if the modifier + corresponding to the conceptual numlock state is set. + Bug #143702. + +2006-07-18 Bill Haneman modifications to patch from + + * idl/Accessibility_Selection.idl: + (deselectChild): New method. + + * libspi/selection.c: + (impl_deselectChild): Implement the new IDL method. + + * cspi/spi.h: + (AccessibleSelection_deselectChild): Added new method. + + * cspi/spi_selection.c: + (AccessibleSelection_deselectChild): New method implemented. + +2006-07-13 Bill Haneman modifications to patch from + + * cspi/bonobo/cspi-bonobo.c: + (cspi_init): Replace g_error with g_warning, prevent + SEGV if the registry cannot be activated. Bug #346393. + +2006-07-12 Bill Haneman modifications to patch from + + * po/LINGUAS: put LINGUAS where it belongs. Fixes i18n. + +2006-07-12 Bill Haneman modifications to patch from +2006-07-12 Ariel Rios + + See RFE #326536. + + * idl/Accessibility_Table.idl: + (getRowColumnExtentsAtIndex): New method for getting + selection status and extents in one API call. + + * libspi/table.c: + (impl_getRowColumnExtentsAtIndex): Implementation of + new method above. + (spi_table_class_init): Add above to epv. + + * cspi/spi.h: + * cspi/spi_table.c: + (AccessibleTable_getRowColumnExtentsAtIndex): New + method, retrieves selection status and row/col extents + for a table cell in a single API call. + +2006-07-12 Bill Haneman modifications to patch from +2006-07-12 Ariel Rios + + * cspi/bonobo/cspi-bonobo.c: Remove warning adding + + * cspi/spi_text.c: + (AccessibleText_getAttributeRun,AccessibleText_getDefaultAttributes): + New bindings for new methods defined in idl and libspi. + + * cspi/spi.h: + (AccessibleText_getAttributeRun,AccessibleText_getDefaultAttributes): + Added prototype functions. + + * libspi/text.c: + (impl_getAttributeRun, impl_getDefaultAttributeSet): New method implementation + Bug #326520 + (spi_text_class_init): Added previous methods. + + * libspi/spi.h: + (impl_getAttributeRun, impl_getDefaultAttributeSet): Added prototypes + * libspi/spi-private.h: Corrections. + +2006-06-29 Bill Haneman + + Added Document interface (see bug #326520), + with work from Ariel Rios . + + * configure.in: Bump to 1.7.8. + + * libspi/Makefile.am: Added document.[ch] to sources + + * libspi/document.h: + (SpiDocument, SpiDocumentClass): + New interface implementation. + (spi_document_get_type, spi_document_construct) + (spi_document_interface_new): New methods added. + (SPI_DOCUMENT_TYPE, SPI_DOCUMENT) + (SPI_DOCUMENT_CLASS, IS_DOCUMENT, IS_DOCUMENT_CLASS): + Added macros for SpiDocument + for new object. + + * libspi/document.c: + (spi_document_interface_new): Get a + new document interface. New. + (get_document_from_servant): Get an AtkDocument from servant New. + (impl_getLocale, impl_getAttributeValue, impl_getAttributes): + Implementation of methods defined on idl. + (spi_document_class_init, spi_document_init) + Init methods for SpiDocument. new + + * idl/Accessibility.idl: Added Accessibility_Document.idl. + + * cspi/Makefile.am: Added spi_document.c to sources. + + * cspi/spi_document.c: + (AccessibleDocument_ref, AccessibleDocument_unref): Added. + (AccessibleDocument_getLocale, AccesibleDocument_getAttributeValue) + (AccessibleDocument_getAttributes): Bindings for methods defined + on libspi + + * cspi/spi_accessible.c: + (Accessible_isDocument, Accessible_getDocument) New. + * cspi/spi.h: + (Accessible_isDocument, Accessible_getDocument) + (AccessibleDocument_ref, AccessibleDocument_unref) + (AccessibleDocument_getLocale, AccessibleDocument_getAttributeValue) + (AccessibleDocument_getAttributes): Bindings added. + + * idl/Makefile.am: Added Accessibility_Document.idl to + idl_DATA. + +2006-06-29 Bill Haneman + + * idl/Accessibility_Document.idl: New interface + for complex documents. First stage of fix for RFE + #326520. + +2006-06-27 Bill Haneman + + * libspi/streamablecontent.c: + (impl_content_stream_close): + Unref the GIOChannel on close. + +2006-06-23 Bill Haneman + + * idl/Accessibility_Role.idl: + * libspi/accessiblerole.c: + * cspi/spi_accessible.c: Added ROLE_LINK, + ROLE_REDUNDANT_OBJECT, and ROLE_INPUT_METHOD_WINDOW. + Bug #345758 and bug #140635. + + +2006-06-22 Bill Haneman + + Bug #345701. + + * idl/Accessibility_StreamableContent.idl: + Fix derivation of StreamableContent and ContentStream. + + * cspi/spi_streamablecontent.c: + (accessible_content_stream_client_read): + Fix the datatype of the content stream used. + Interpret short reads as EOF, and stop trying to + read when we've fulfilled the request. + (AccessibleStreamableContent_getContentTypes): + Use g_strdup, not CORBA_string_dup, for the strings. + (AccessibleStreamableContent_open): + Correctly use the new getStream method for opening, + not the deprecated getContent method. + Use the object reference as the stream hash key. + Make note of the 'one stream per client per streamable' + limitation in the docs. + + * libspi/libspi.h: + Add streamablecontent.h to the list of #includes. + + * libspi/streamablecontent.c: + (impl_content_stream_read): Initialize the GError. + Allocate the incoming buffer if reading a fixed length of + data. Use g_memmove instead of memcpy. + (impl_accessibility_streamable_get_content_types): + Init typelist->_maximum. Only allocate the buffer if + there is a non-zero number of content types available. + (BONOBO_TYPE_FUNC_FULL(SpiStreamable): Move to end. + + * libspi/streamablecontent.h: + (SPI_STREAMABLE_TYPE): Fix this macro, it was totally broken. + + * libspi/value.h: + (SPI_IS_VALUE): Fix a typo in this macro too. + +2006-06-16 Bill Haneman + + RFE #326532: + + * idl/Accessibility_StreambleContent.idl: + Deprecate the Bonobo_Stream-based methods in favor of + a self-contained "ContentStream" interface. This should + allow us to remove BonoboStream dependencies entirely, since + there were no non-NIL implementations of the old methods anyway. + (ContentStream): New interface. + (ContentStream::SeekType): Enum. + (ContentStream::seek): New. + (ContentStream::read): New. + (ContentStream::close): New. + (getContent): Deprecate. + (getURI): New method, returns a URI pointing to the content, if available. + + * libspi/streamablecontent.c: + (SpiContentStream): Internal object type definition used to + implement Accessibility::StreamableContent::ContentStream via + AtkStreamableContent's GIOChannel back-end. + (spi_content_stream_new, spi_content_stream_dispose): See above; + static methods. + (impl_content_stream_seek, impl_content_stream_read): + (impl_content_stream_close): New, implementations of + ContentStream's IDL. + (impl_accessibility_streamable_get_stream): Implement the + public method Accessibility::StreamableContent::getStream. + (impl_accessibility_streamable_get_uri): Implement the + public method Accessibility::StreamableContent::getURI. + + * cspi/spi_streamablecontent.c: + (accessible_bonobo_stream_client_seek): Replaced by + (accessible_content_stream_client_seek). + (accessible_bonobo_stream_client_read): Replaced by + (accessible_content_stream_client_read). + (AccessibleStreamableContent_open): + (AccessibleStreamableContent_seek): + (AccessibleStreamableContent_read): + (AccessibleStreamableContent_close): Use the new 'getStream' + API instead of the deprecated 'getContent' API, inside the cspi wrappers. + +2006-06-15 Bill Haneman + + * idl/Accessibility.idl: #include Bonobo_Unknown.idl, + remove from other .idl files (except LoginHelper). + See bug #313122. + 2006-06-14 Bill Haneman * */Makefile.am: Add WARN_CFLAGS to INCLUDES. @@ -8,6 +267,11 @@ * cspi/spi-impl.h: Added #defines SPI_TRUE and SPI_FALSE for completeness. Bug #163111. + + * atk-bridge/bridge.c, cspi/bonobo/cspi-bonobo.c: + * libspi/util.c, registryd/registry-main.c: + Fix guint/char* casts. + Patch from chpe, bug #333883. 2006-06-12 Bill Haneman