summaryrefslogtreecommitdiff
path: root/atspi/atspi-device-listener.h
Commit message (Collapse)AuthorAgeFilesLines
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-12/+12
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I ran this on each directory with C files: clang-format -i *.[ch] "-i" is the in-place option. I also adjusted the order of #includes for some files which failed to build after that: Clang-format reorders blocks of #include directives alphabetically, but they can be grouped and separated by blank lines. If there is a blank line between blocks, like #include "zork.h" #include "bar.h" #include "foo.h" then it will not put zork.h after the other two. The last two header files will be sorted alphabetically. We can adjust the formatting of chunks of code by hand with comments like these: /* clang-format off */ this code { is, formatted, by, hand; } /* clang-format on */ See https://clang.llvm.org/docs/ClangFormat.html for the general manual and https://clang.llvm.org/docs/ClangFormatStyleOptions.html for the style options and the comments described above.
* AtspiDeviceListenerCB: remove const from event prototypeMike Gorse2021-02-231-1/+1
| | | | | | | | The parameter is marked with (transfer full), and the code expects the caller to free the event, so adjust the prototype to clarify the expected behavior. Also fix a related memory leak in atspi-device-legacy.c. Fixes #31
* Relicense as LGPL 2.1Mike Gorse2019-08-281-4/+4
| | | | Fixes https://gitlab.gnome.org/GNOME/at-spi2-core/issues/2
* Fix outdated FSF addressMike Gorse2019-08-271-2/+2
|
* Fix a few more warningsMike Gorse2013-10-101-1/+1
|
* Add prototype for atspi_device_event_get_typeMike Gorse2013-10-081-0/+2
|
* Add G_BEGIN_DECLS and G_END_DECLS macros for prototypes to fix c++ linkageMike Gorse2012-05-211-0/+5
|
* Improving atspi-devicelistener documentation.Aline Bessa2011-08-231-5/+5
|
* API changes to device and event listeners for compatibility with jsMike Gorse2011-07-061-1/+1
| | | | | | | | | | | | | | Skip atspi_device_listener_new_simple and atspi-event_listener_new_simple, since Javascript throws an error for callback functions that don't provide user_data. Add atspi_event_listener_new. Change order of user_data and destroy notify parameters in atspi_device_listener_new to match the order used other places in GNOME. The old order was triggering an IndexError because of what appears to be a bug in pygobject. Note that this is an API change and would ordinarily be a bad idea, but at this point I don't know of anyone using libatspi directly, so going to commit it. Some introspection fixes.
* Update copyright and add some missing license infoMike Gorse2011-01-311-0/+1
|
* Various fixesMike Gorse2010-11-291-3/+18
| | | | | | | Events and DeviceEvents are now sent with transfer full to work around a possible pygi bug. Various other fixes.
* Various component fixes, and fix dbind_method_call_reentrant_vaMike Gorse2010-11-171-1/+1
|
* Some work on event support; many bug fixesMike Gorse2010-11-051-0/+74