<2001-10-26  Laszlo Peter <laca@ireland.sun.com>

	* at-bridge/Makefile.am: fix LDFLAGS.

<2001-10-09  Bill Haneman <bill.haneman@sun.com>

	* 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 <louise.miller@sun.com>

	* 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 <marc.mulcahy@sun.com

	* libspi/component.c libspi/component.h:
		Fixed typo.  Added assertions for object checks in 
	AccessibleComponent code.

<2001-10-09  Bill Haneman <bill.haneman@sun.com>

	* 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 <bill.haneman@sun.com>

	* 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<InterfaceName>; 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 <bill.haneman@sun.com>

	* libspi/keystrokelistener.h:
	* libspi/keystrokelistener.c:
		Initial functional implementations of KeystrokeListener.
	* idl/Registry.idl:
	
<2001-10-05  Marc Mulcahy <marc.mulcahy@sun.com>

 	Fixed string handling for NULL strings in libspi.
	Added spi_freeString to free strings returned by C bindings.

<2001-09-30  Bill Haneman <bill.haneman@sun.com>

	* libspi/keystrokelistener.h:
	* libspi/keystrokelistener.c:
		Began (no-op) implementations of KeystrokeListener
			(see below).
	* libspi/deviceeventcontroller.c:
	* libspi/deviceeventcontroller.h:
		Began creating implementations of DeviceEventController,
			to handle keystroke and mouse event listening and
			synthesis.
	* libspi/accessible.c:
		Stubbed-in the implementations for
			Accessibility_Accessible_getState and
			Accessibility_Accessible_getRelationSet.
	* libspi/registry.c:
		Improved de-registration process and fixed some bugs, 
			deregistration now works correctly.
	* libspi/desktop.c:
		Added initialization of applications list (to NULL).
	* util/magnifier.c:
		Reduced speech compression from 0.5 to 0.7, for demo.
		Changed call to gdk_window_set_decorations()
			to gtk_window_set_decorated().
	* at-bridge/bridge.c:
		Bridge now deregisters when app exits, via
			registration of a cleanup function
			with the g_atexit() call.
			Required making 'app' static, renamed 'this_app'.
		Fixed broken use of bonobo_init, passing argv wrongly.

<2001-09-27  Bill Haneman <bill.haneman@sun.com>

	* util:
	* util/Makefile.am: 
		Created a new directory for 
			accessibility-related utilities, primarily for
			testing and demo purposes, but with possible
			end-user utility.
	
	* util/magnifier.c:
	* util/magnifier.h:
	* util/mag_image.c:
	* util/mag_image.h:
		Onscreen magnifier utility that
			is implemented as a bonobo service.
	
	* util/mag_client.c:
	* util/mag_client.h:
		Client-side support (simple C bindings) 
			for Magnification service
	
	* util/mag_control.c:
	        Client program example for 
			Magnification service
	
	* util/Accessibility_Magnifier.server.in:
		Bonobo-activation file for the 
			Magnification service.
	
	* util/idl:
	* util/idl/Magnifier.idl:
		IDL defining the bonobo Magnification
			service interface.

	* test/simple-at.c:
		Modifications to use the bonobo-activated magnifier
			above, in place of trying to connect to an existing
			magnifier that uses socket-listening IPC.

		If env variable MAGNIFIER is set, a magnifier service
			will be started if one does not exist.
	
<2001-09-25  Bill Haneman <bill.haneman@sun.com>
	* at-bridge/bridge.c:
		applied patch from Marc to build and run 
	        against new glib and gtk+ (seemed like a change 
	        to bonobo_init signature was made ?)
	* test/simple-at.c:
		made festival-server support turned off by default.
		Added support for a simple magnifier (off by default)
		which will be added to a 'util' directory later.
	* at-bridge/Makefile.am:
		Changed "application.h" header from a 'source'
		to a 'dependency' of libat-bridge.

<2001-09-12  Marc Mulcahy <marc.mulcahy@sun.com>
	* cspi/Makefile.am:
		Added spi-util.c.

	* cspi/spi-util.c:
		Fixed typo

	* cspi/spi.c:
		Added interface implementation c files to list of
			includes so they are included in libcspi.

	* cspi/spi.h:
		Changed prototype of AccessibleAction_doAction to return a
			boolean.
		Changed prototype of AccessibleTable_getCaption to
			return an Accessible.
		Changed prototype of AccessibleTable_getSelectedRows
			and AccessibleTable_getSelectedColumns to
			return a long (returns the number of selected rows
			or columns respectively).
		Changed name of AccessibleText_refRunAttributes to
			AccessibleText_getAttributes.
		Changed prototype of AccessibleText_getCharacterExtents to
			return a void rather than a boolean. 
		Added support for a AccessibleCoordType parameter
			specifying what type of coordinates are desired.
		Added an AccessibleCordType parameter to
			AccessibleText_getPointAtOffset.

	* cspi/spi_accessible.c:
		Added code to return the outstanding interfaces from
			Accessible_queryInterface.

	* cspi/spi_action.c:
		Fixed typos.
		Corrected call to getNActions to call the c binding
			for an attribute.

	* cspi/spi_editabletext.c:
		Fixed typos.
		Changed name from setRunAttributes to setAttributes.

	* cspi/spi_hyperlink.c:
		Fixed typos.
		Changed call to getNAnchors to correctly call the c
			binding for an attribute.

	* cspi/spi_hypertext.c:
		Fixed typos.
		Changed getImageDescription to correctly call the
			binding for an attribute.

	* cspi/spi_selection.c:
		Changed getNSelectedChildren to correctly call the c
			binding for the attribute.
		Changed refSelectedChild to getSelectedChild.

	* cspi/spi_table.c:
		Fixed typos.
		Changed getCaption to return an Accessible.
		Fixed calls which retrieve attributes.
		Changed refAt to getAccessibleAt.
		Changed getNSelectedRows and getNSelectedColumns to
			return longs.

	* cspi/spi_text.c:
		Changed getCharacterExtents and getPointAtOffset to accept an
			AccessibleCoordType.
		Fixed typos.
		Changed calls which retrieve attributes.
		Changed refRunAttributes to getAttributes.

	* cspi/spi_value.c:
		Fixed typos.

	* idl/Hyperlink.idl:
		Changed n_anchors attribute to nAnchors to keep naming
			convention consistent.

	* idl/Table.idl:
		Made Table inherit from Bonobo::Unknown.
		Added nSelectedColumns and nSelectedRows attributes.

	* idl/Value.idl:
		Made Value inherit from Bonobo::Unknown.

	* libspi/hyperlink.c:
		Change for nAnchors attributte name change.

<2001-09-12  Marc Mulcahy <marc.mulcahy@sun.com>
	* cspi/Makefile.am:
		Added spi-util.c.

	* cspi/spi-util.c:
		Fixed typo

	* cspi/spi.c:
		Added interface implementation c files to list of
			includes so they are included in libcspi.

	* cspi/spi.h:
		Changed prototype of AccessibleAction_doAction to return a
			boolean.
		Changed prototype of AccessibleTable_getCaption to
			return an Accessible.
		Changed prototype of AccessibleTable_getSelectedRows
			and AccessibleTable_getSelectedColumns to
			return a long (returns the number of selected rows
			or columns respectively).
		Changed name of AccessibleText_refRunAttributes to
			AccessibleText_getAttributes.
		Changed prototype of AccessibleText_getCharacterExtents to
			return a void rather than a boolean. 
		Added support for a AccessibleCoordType parameter
			specifying what type of coordinates are desired.
		Added an AccessibleCordType parameter to
			AccessibleText_getPointAtOffset.

	* cspi/spi_accessible.c:
		Added code to return the outstanding interfaces from
			Accessible_queryInterface.

	* cspi/spi_action.c:
		Fixed typos.
		Corrected call to getNActions to call the c binding
			for an attribute.

	* cspi/spi_editabletext.c:
		Fixed typos.
		Changed name from setRunAttributes to setAttributes.

	* cspi/spi_hyperlink.c:
		Fixed typos.
		Changed call to getNAnchors to correctly call the c
			binding for an attribute.

	* cspi/spi_hypertext.c:
		Fixed typos.
		Changed getImageDescription to correctly call the
			binding for an attribute.

	* cspi/spi_selection.c:
		Changed getNSelectedChildren to correctly call the c
			binding for the attribute.
		Changed refSelectedChild to getSelectedChild.

	* cspi/spi_table.c:
		Fixed typos.
		Changed getCaption to return an Accessible.
		Fixed calls which retrieve attributes.
		Changed refAt to getAccessibleAt.
		Changed getNSelectedRows and getNSelectedColumns to
			return longs.

	* cspi/spi_text.c:
		Changed getCharacterExtents and getPointAtOffset to accept an
			AccessibleCoordType.
		Fixed typos.
		Changed calls which retrieve attributes.
		Changed refRunAttributes to getAttributes.

	* cspi/spi_value.c:
		Fixed typos.

	* idl/Hyperlink.idl:
		Changed n_anchors attribute to nAnchors to keep naming
			convention consistent.

	* idl/Table.idl:
		Made Table inherit from Bonobo::Unknown.
		Added nSelectedColumns and nSelectedRows attributes.

	* idl/Value.idl:
		Made Value inherit from Bonobo::Unknown.

	* libspi/hyperlink.c:
		Change for nAnchors attributte name change.


<2001-09-05  Marc Mulcahy <marc.mulcahy@sun.com>

	implementations-- made server implementations own AtkObject pointers
	rather than their respective AtkInterrface pointers to fix
	refcounting.  AtkHyperlink is still broken.

<2001-09-04  Bill Haneman <bill.haneman@sun.com>
	* cspi/spi_accessible.c:
		Added method Accessible_Role_getName(),
			and requisite string array (role_names).
		Added conversion string_from_corba_strin() call
			to Accessible_getName and _getDescription.
	* libspi/accessible.c:
		Added implementation for Accessible_getRole()
	* test/simple-at.c:
		Added festival support, used if environment variable
			FESTIVAL is set.
	
2001-09-04  Bill Haneman <bill.haneman@sun.com>

	* at-bridge/bridge.c:
	    Now allocate Accessibility_Event using
	    Accessibility_Event__alloc() instead of g_new0().
	* libspi/accessibleeventlistener.c:
	    Initialize AccessibleEventListener->callbacks to NULL.
	    Fixed accessible__event_listener_init() param, changed to
	    "AccessibleEventListener *" type.
	    Changed a bonobo_object_release_unref() call to
	    Accessibility_Accessible_unref().
	* libspi/listener.c:
	    Changed Bonobo_Unknown_unref to (equivalent) 
	    Accessibility_Accessible_unref.
	* libspi/registry.c:
	    Changed bonobo_object_release_unref to 
	    Accessibility_Accessible_unref.
	
<2001-09-04  Marc Mulcahy <marc.mulcahy@sun.com>
	
	* Added files:
	    spi_action.c spi_editabletext.c spi_hyperlink.c spi_hypertext.c
	    spi_image.c spi_selection.c spi_table.c spi_text.c spi_value.c
	    spi-util.c spi-util.h
	    Implementations for C bindings to remaining accessibility 
	    interfaces.

<2001-09-04 Marc Mulcahy <marc.mulcahy@sun.com>
	
	* idl/Action.idl:
	    changed return value of Action from void to boolean to 
  	    bring in line with ATK.

	* idl/Text.idl:
	    Changed getText funcions to return "out" start and end offsets.
	    Changed getAttributes to take and offset and return the start 
	    and end offset of the attribute run.
	    Changed getOffsetAtPoint and getCharacterExtents to take an 
	     enum describing whether coordinates are window or screen.

	* Added files:
	    libspi/action.c libspi/action.h libspi/editabletext.c 
	    libspi/editabletext.h libspi/hyperlink.c libspi/hyperlink.h
	    libspi/hypertext.c libspi/hypertext.h libspi/image.c 
	    libspi/image.h libspi/selection.c libspi/selection.h
	    libspi/table.c libspi/table.h libspi/text.c libspi/text.h 
	    libspi/value.c libspi/value.h
	    Added server implementations for outstanding ATK interfaces 
	    not yet implemented.
 
2001-09-04  Bill Haneman <bill.haneman@sun.com>

	* idl/Action.idl:
		Added (missing) getName() method. 
		Made nActions an attribute.
	* idl/EditableText.idl:
		Changed order of params in setAttributes.
	* idl/Hyperlink.idl:
		Removed getAnchor, added getURI.
	* idl/Image.idl:
		Changed attributes to methods, for efficiency
		(so that getting extents can be done in one call)
	* idl/Selection.idl:
		Changed nSelectedChildren to attribute, and re-indented.
	* idl/Table.idl: changed nrows, ncolumns, caption, summary 
		to attributes.
	* idl/Text.idl: reformatted to match our coding style.
		(temporarily?) removed getRowColumnAtOffset().
		Changed text selection API to support multi-select and
		non-contiguous selections, as in ATK.
	* idl/Value.idl: changed some methods to attributes.

2001-08-24  Mark McLoughlin <mark@skynet.ie>

	* libspi/listener.c(impl_notify_event):
	BonoboUnkown_unref the source instead
	of bonobo_object_release_unref - the ORB
	handles the releasing.

	* configure.in: require ORBit-2.3.94 for
	this behaviour.

2001-08-21  Bill Haneman <bill.haneman@sun.com>

        Tagged CVS repository 'EA_1_0'.
        * README.EARLY_ACCESS:
        Alphabetized acknowledgements list, and
        added someone.
        Listed some known dependencies of at-spi.

2001-08-20  Bill Haneman <bill.haneman@sun.com>

	* docs/at-spi-docs.sgml:
	* docs/at-spi-sections.txt:
	* docs/at-spi-overrides.txt: (Added zero-length file)
	Documentation improvements - gtk-doc should build
	docs for all implemented C bindings now.
	* cspi/Makefile.am:
	* cspi/spi_main.c:
	* cspi/spi.c: (New file)
	* cspi/spi_event.c: (New file)
	* cspi/spi_registry.c: (New file)
	* cspi/spi_accessible.c: (New file)
	* cspi/spi_application.c: (New file)
	* cspi/spi_component.c: (New file)
	Split spi_main.c into six parts, and included them from
	"spi.c".  This is a bit of a hack, probably temporary,
	but required by gtk-doc, apparently.
	
2001-08-20  Bill Haneman <bill.haneman@sun.com>

	* docs/Makefile.am:
	* docs/at-spi-docs.sgml:
	* docs/at-spi-sections.txt:
	* configure.in:
	Initial checkins/modifications for gtk-doc generation.
	* cspi/spi.h:
	* cspi/spi.c:
	Added (missing) interface query methods to Accessible's C binding.
	* cspi/spi-impl.h:
	Added GenericInterface type definition.
	* test/simple-at.c:
	Added query for AccessibleComponent interface to focus event handler.
	Added printout of bounding box for focussed component.
	* libspi/component.c:
	Added partial implementation for AccessibleComponent to C binding.
	* idl/Application.idl:
	* libspi/registry.c:
	* libspi/listener.c:
	* libspi/application.c:
	* libspi/application.h:
	Changed "ID" attribute type from string to long.

2001-08-19  Bill Haneman <bill.haneman@sun.com>

	* cspi/spi.h:
	* cspi/spi.c:
	Made method naming consistent: methods taking object args
	start with uppercase, other methods (except those using
	acronyms) start with lowercase.  Underscores delimit between
	object names and method names:
	SPI_init() - uppercase since it starts with an acronym.
	getDesktopCount () - lowercase start since no object param0.
	Accessible_getName() - uppercase object type name, studlyCaps method
	                       name.

	*cspi/spi.h:
	Added gtk-doc documentation for all currently implemented
	methods in the C bindings API.

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
	3 separate lists (focus, window, toolkit).  Began testing
	event names against hashes before relaying events.
	* test/at.c : now register for events of type "focus:"
	* test/app.c : now generate events of type "focus:"
	* at-bridge/bridge.c : register with ATK for focus events,
	and we now relay those focus events to any "focus:" listeners.
	This now works with the bridge as a GTK_MODULE when running test/at.
	* libspi/registry.c :
	* 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.
	
2001-08-15  Mark McLoughlin <mark@skynet.ie>

	* at-bridge/Makefile.am: link against
	../libspi/libspi.la instead of -lspi.

	* at-spi/test/app.c: include 
	bonobo-activation.h. Use a default appname
	if one is not provided.

2001-08-14  Bill Haneman <bill.haneman@sun.com>

	* idl/Registry.idl : temporarily changed register_Application
	to oneway, to work around issue with initial registration 
	re-entrancy.
	* idl/Application.idl : changed attribute "id" from readonly 
	to read-write, since it needs to be assigned by Registry.
	* registryd/registryd.c : added call to set application id 
	on registration.
	* registryd/registry.c : changed de-registration procedure to
	use CORBA_Object_hash() to find matching object ref in application
	lists and listener lists.
	* registryd/registry.c : defined EventTypeStruct and EventTypeMajor,
	began distinguishing between event types (work in progress).

2001-08-13  Bill Haneman <bill.haneman@sun.com>

	CHANGES:
	* libspi/application.c:
	Added implementations for get/set id, get_toolkitName,
	get_version.
	* registryd/registryd.c :
	* test/at.c :
	* test/app.c :
	* Makefile.am :
	Converted from use of OAF to bonobo-activation.
	* libspi/desktop.h :
	* libspi/desktop.c :
	* test/app.c :
	Removed references to atksimpleobject, since base atkobject
	implementation now provides functionality we need.
	* libspi/atksimpleobject.c :
	* libspi/atksimpleobject.h :
	Removed.
	
	ADDITIONS:
	* at-bridge
	* at-bridge/Makefile.am
	* at-bridge/bridge.c
	* configure.in
	* Makefile.am
	Added directory "bridge" and contents, and added dependencies
	in Makefile.am/configure.in.  
	Initial checkin of "at-bridge".
	This code is a GTK_MODULE which automatically registers
	GTK+ apps with the accessibility registry, using an object
	reference to the root ATK object.
	
2001-08-10  Mark McLoughlin <mark@skynet.ie>

	* po/Makefile.in.in: Remove. Again. If this
	doesn't get autogenerated - you need to update
	gnome-common.

2001-08-07  Mark McLoughlin <mark@skynet.ie>

	* po/Makefile.in.in: Add. Again.

2001-07-31  Bill Haneman <bill.haneman@sun.com>

        * libspi/accessible.c : added support for 'description' property.
	* libspi/accessible.c
	* libspi/desktop.c
	* libspi/registry.c : changed to use bonobo_object instead of bonobo_x_object
	    (since the two are now equivalent in libbonobo)
	* idl/Action.idl
	* idl/Component.idl
	* idl/Hyperlink.idl
	* idl/Image.idl
	* idl/Selection.idl
	* idl/Table.idl
	* idl/Text.idl
	* idl/Value.idl : changed these 'secondary' interfaces to inherit from
	     Bonobo::Unknown as does Accessibility::Accessible.
	* idl/StreamableContent.idl : as above, and replaced internal InputStream
	     interface with Bonobo::Stream, since it was redundant with it.
	     (The Stream returned by a StreamableContext object is expected to
	     implement only a subset of Bonobo::Stream)

2001-07-28  Anders Carlsson  <andersca@gnome.org>

        * libspi/accessible.c (accessible_object_finalize): Change
          g_free to g_object_unref since the AtkObject is a GObject.

2001-07-30  Bill Haneman <bill.haneman@sun.com>

	* idl/Accessibility.idl: add new IDL files
	
	Added:
	* idl/Action.idl: Definitions of actionable UI object
	* idl/Component.idl: Definitions of UI component geometry, etc.
	* idl/Hyperlink.idl: Defs of hyperlink behavior
	* idl/Image.idl: Def of accessible image
	* idl/Selection.idl: Definition of UI object with selectable children
	* idl/StreamableContent.idl: Definition of UI object with streamable backing data
	* idl/Table.idl: Definitions for access to table ('spreadsheet') elements
	* idl/Text.idl: Interface defs for UI elements with complex textual content
	* idl/Value.idl: Definition of UI element that is a value controller or display
	
2001-07-27  Michael Meeks  <michael@ximian.com>

	* po/Makefile.in.in: remove autogenerated file from CVS.

	* libspi/Makefile.am: Radicaly re-vamp to simplify & add ORBit2
	type library.

	* idl/Registry.idl: include guard.

	* idl/Accessibility.idl: Add, and include all the other IDL
	files.

	* idl/*.idl: remove mass of pragmas etc.

2001-07-26  Michael Meeks  <michael@ximian.com>

	* registryd/Makefile.am (registryd_SOURCES): remove
	redundant at_.

2001-07-27  Mark McLoughlin <mark@skynet.ie>

	* libspi/.cvsignore, registryd/.cvsignore,
	  test/.cvsignore: updated.

	* po/Makefile.in.in: gettext update.

2001-07-25  Bill Haneman <bill.haneman@sun.com>

	* initial CVS checkin

2001-06-29  Michael Meeks  <michael@ximian.com>

	* configure.in: add AM_CONFIG_HEADER to gen config.h

	* acconfig.h: add.

