Renamed "target" member of Event to "source".
[platform/core/uifw/at-spi2-atk.git] / ChangeLog
index c4becb7..92c73fe 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,183 @@
+2001-08-18  Bill Haneman <bill.haneman@sun.com>
+
+       * Makefile.am : changed build order to build test last.
+       * cspi/spi.h :
+       * cspi/spi_main.c :
+       Changed "createEventListener" to "CreateEventListener".
+       * libspi/accessibleeventlistener.c :
+       Bugfix for addition of callbacks.
+       * test/Makefile.am :
+       * test/simple-at.c :
+       Added new test that uses the C bindings API.
+       * idl/Event.idl :
+       * libspi/listener.c :
+       * libspi/registry.c :
+       * libspi/accessibleeventlistener.c :
+       * at-bridge/bridge.c :
+       Renamed member "target" of Accessibility_Event to "source",
+       which is more descriptive.
+       
+
+2001-08-18  Bill Haneman <bill.haneman@sun.com>
+
+       * Makefile.am: 
+       * configure.in :
+       * cspi/Makefile.am :
+       Added makefile support for at-spi/cspi directory.
+       * cspi/spi.h : 
+       * cspi/spi-impl.h :
+       * cspi/spi-listener.h : (NEW FILE)
+       Added support for/use of spi-listener.h.
+       * cspi/spi_main.c :
+       C bindings now build successfully, with no warnings.
+       * libspi/accessibleeventlistener.h : (NEW FILE)
+       * libspi/accessibleeventlistener.c : (NEW FILE)
+       * libspi/Makefile.am :
+       Added new object type "AccessibleEventListener"
+       which inherits from Listener, and allows attachment
+       of in-process callbacks (so that a client with a listening
+       object instance can add functionality to the local 
+       implementation, dynamically).
+
+2001-08-18  Bill Haneman <bill.haneman@sun.com>
+
+       * libspi/accessible.c: 
+       Add implementation for get_index_in_parent().
+       * cspi/spi.h : 
+       Added #include of "spi-roletypes.h", and
+       added enumerated type AccessibleCoordType.
+       Added definition for KeystrokeListener (function type).
+
+       ADDED FILES:
+       * cspi/spi-statetypes.h :
+       * cspi/spi-roletypes.h :
+       * cspi/spi-impl.h :
+       Added these headers, used by spi.h.
+       * cspi/spi_main.c : 
+       Added code (NOTE: not yet built by make).
+
+2001-08-18  Mark McLoughlin <mark@skynet.ie>
+
+       * libspi/Makefile.am: generate imodule
+       at the same time as other idl compiler 
+       generated files. 
+
+2001-08-17  Bill Haneman <bill.haneman@sun.com>
+       * libspi/registry.c :
+       * libspi/application.c :
+       * idl/Application.idl :
+       Made registration with toolkit an application method,
+       which is required since each app has its own toolkit static
+       environment.  Thus the bridge must register for 
+       notification of toolkit events from each application in turn.
+       Toolkit notifications are now successfully registered for, and
+       sent to the listening at client.
+       * test/at.c :
+       Changed toolkit event string to use hyphens rather than underscores.
+       * libspi/listener.c :
+       listner now gives more info in debug mode - it reports the
+       name of the event received, as well as the name of the source.
+       
+
+2001-08-16  Bill Haneman <bill.haneman@sun.com>
+
+       * libspi/registry.c :
+       added more implementation for toolkit events.
+       Fixed bug such that toolkit event registrations
+       (via atk) use the whole event name string, not 
+       just minor+detail.
+       Removed a useless call to an ORBit_ method.
+       * at-bridge/bridge.c :
+       Removed unused local sbuf[] variable.
+       * test/at.c :
+       We now register for Gtk:GtkWidget:button_press_event 
+       events as well as "focus:" events.
+       * cspi/spi.h :
+       Add some more API from Registry.idl that was missing,
+       for keystroke listening, keystroke and mouse event
+       synthesis, and enumeration of accessible desktops.
+
+2001-08-16  Michael Meeks  <michael@ximian.com>
+
+       * configure.in: use AM_GLIB_GNU_GETTEXT.
+
+       * Makefile.am (SUBDIRS): kill intl.
+
+2001-08-15  Michael Meeks  <michael@ximian.com>
+
+       * registryd/Makefile.am: s/oaf/server/ relocate info file.
+
+       * configure.in: upd.
+
+       * configure.in: depend on a recent bonobo-activation that
+       will find our server files ...
+
+2001-08-16  Bill Haneman <bill.haneman@sun.com>
+
+       * libspi/accessible.c : accessible_new() :
+       Now we add the Component interface via bonobo_object_add_interface,
+       if the contained AtkObject implements AtkComponent.
+       * libspi/accessible.h : now include "component.h"
+       * libspi/component.h :
+       * libspi/component.c : added files - implementation of
+       bonobo wrapper object for Accessibility/Component
+       * libspi/listener.c :
+       Added test code to check for Accessibility/Component:1.0
+       interface and report whether it is implemented by the
+       event source.
+       * libspi/registry.c :
+       Now we check for not only the hash of the whole event 
+       string before relaying the event, we also check the
+       "minor" event string (without the detail string).
+       This allows event listeners to be registered against
+       all events of a certain major+minor type, or just
+       against a specific major+minor+detail type.
+       * libspi/accessible.c :
+       Added implementations for Accessible:get_parent(),
+       Accessible:getChildCount(), and Accessible:getChildAtIndex().
+       * libspi/registry.c :
+       * libspi/listener.c :
+       Replaced calls to Accessibility_Accessible_ref() and
+       Accessibility_Accessible_unref() with 
+       calls to bonobo_object_dup_ref() and 
+       bonobo_object_release_unref(), so that the CORBA object
+       is dup-ed and released when relayed, as well as the bonobo object.
+
+2001-08-15  Mark McLoughlin <mark@skynet.ie>
+
+       * libspi/Makefile.am,
+          registryd/Makefile.am,
+          at-bridge/Makefile.am.
+          test/Makefile.am, configure.in:
+       reverse previous changes.
+
+       * /idl/Image.idl: fix typo.
+
+       * test/Makefile.am: put DEBUG_FLAGS
+       in CFLAGS.
+
+2001-08-15  Mark McLoughlin <mark@skynet.ie>
+
+       * test/app.c: use argv[0] instead of
+       g_type_prgname.
+
+2001-08-15  Mark McLoughlin <mark@skynet.ie>
+
+       * libspi/Makefile.am,
+         registryd/Makefile.am,
+         at-bridge/Makefile.am.
+         test/Makefile.am, configure.in:
+       cleanup, replace individual LIBS/CFLAGS with
+       AT_COMMON_{LIBS|CFLAGS}.
+
+       * README: format.
+
+2001-08-15  Mark McLoughlin <mark@skynet.ie>
+       
+       * configure.in, libspi/Makefile.am:
+       Change IDL path checking for bonobo-activation
+       as opposed to oaf.
+
 2001-08-15  Bill Haneman <bill.haneman@sun.com>
 
        * registryd/registry.c : separated event listeners to use
        * libspi/listener.c : now we ref event sources before propagating, and unref on receipt.
        * libspi/registry.c : some changes to internal structs, to support event typestring hashes.
        * text/app.c : changed the way the appname is generated.
+       * cspi : added directory that will hold the C bindings library for 
+               non-CORBA/bonobo-savvy clients.
+       * cspi/spi.h : header file that contains the function prototypes for the C binding.
+       * idl/Component.idl : added in parameter to indicate coord system for
+               geometry-related calls.
+       * idl/Hyperlink.idl : added readonly n_links attribute
+       * idl/Image.idl : changed methods to attributes.
        
        KNOWN PROBLEMS:
        poll() fails after a few event notifications, when the number of file descriptors