X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=ChangeLog;h=b767326136d31e3f7aed2a5801741385299060ae;hb=0529849f9abd8fd05f470ffdeee425685533c5a2;hp=d07b0b6fe3d1fc954eb570f90814283a42b2956c;hpb=9ad984f0954f9f371c3f2898eceb5a68f5367891;p=platform%2Fcore%2Fuifw%2Fat-spi2-atk.git diff --git a/ChangeLog b/ChangeLog index d07b0b6..b767326 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,363 @@ +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. + Bug #308239. + + * configure.in, */Makefile.am: mingw patch, modified from + original patch by yselkowitz. Bug #314216. + + * 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 + + * configure.in: Require atk-1.12.0, to pick up + new API. (bug #344412). + + * libspi-1.0-uninstalled.pc.in: + * libspi-1.0.pc.in: + * libloginhelper-1.0.pc.in: Remove gtk+ dependency. + Fix for #341488 from Samual Thibault. + + * configure.in, LINGUAS: Use LINGUAS, bug #338023. + Thanks to Brian Pepple. + +2006-06-09 Bill Haneman + + * libspi/table.c: + (impl_get_nSelectedRows, impl_get_nSelectedColumns): + New, missing implementations of attribute reading methods + in epv. Bug #339021. + + * cspi/spi.h, spi_value.c: + (AccessibleValue_getMinimumIncrement): New methods wrapping + the (formerly unimplemented) property from Value.idl. + + * libspi/value.c: + (impl_get_minimumIncrement): Implementation for retrieving + the minimum valuator increment, (formerly unimplemented). + Bug #344265. + +2006-06-09 Bill Haneman + + * idl/Accessibility_State.idl: + Added STATE_VISITED (bug #338369). + + * cspi/spi_accessible.c: + (spi_state_to_corba) Fixed marshalling of new statetypes. + + * libspi/stateset.c: + (spi_init_state_tables, impl_getStates): + Fixed conversion of new statetypes to/from ATK. + + * idl/Accessibility_Role.idl: Added ROLE_FORM (bug #344266). + + * cspi/spi-roletypes.h, spi_accessible.c: Added marshalling + definitions/conversions for new roles from ATK. + + * idl/Accessibility_Relation.idl: + * libspi/relation.c: + * cspi/spi.h, spi_accessible.c: Added SPI_RELATION_DESCRIBED_BY and + SPI_RELATION_DESCRIPTION_FOR. (bug #344264) Also + SPI_PARENT_WINDOW_OF, which was in ATK but not AT-SPI. + + * libspi/accessible.c: Fixed marshalling of new role types from + ATK. + +2006-04-17 Matthias Clasen + + * revert my previous change + +2006-04-17 Kjartan Maraas + + * configure.in: Remove obssolete no_NO locale + * po/no.po: And the translation. + +2006-04-05 Matthias Clasen + + * atk-bridge/bridge.c (spi_atk_emit_eventv): Fix a + memory-management error that caused crashes on x86_64. + (#337239) + +2006-03-30 Guntupalli Karunakar + + * configure.in: Added 'dz' (Dzongkha) to ALL_LINGUAS. + +2006-03-27 Bill Haneman + + * configure.in: Define $LIBTOOL_EXPORT_OPTIONS + to strip "cspi_*" from the symbol table. + + * cspi/spi_streamablecontent.c: + (get_streams): Make this method static. + + * cspi/spi_main.c: + (_cspi_exception_throw): rename to cspi_exception_throw, + so we can strip it with the rest... + + * cspi/Makefile.am: + Add LIBTOOL_EXPORT_OPTIONS to libcspi_la_LDFLAGS. + +2006-03-27 Bill Haneman + + Add doxygen-generated IDL docs to tarball, and enable + doxygen during build/install when available. Bug #301345. + + * configure.in: Add docs/reference/idl/Makefile to AC_OUTPUT. + + * docs/reference/Makefile.am: Add idl to SUBDIRS. + + * docs/reference/idl/Makefile.am: Optionally use + doxygen to create docs. + +2006-03-20 Vladimer Sichinava + + * configure.in: Added "ka" (Georgian) to ALL_LINGUAS + 2006-03-20 Bill Haneman * libspi/table.c: