summaryrefslogtreecommitdiff
path: root/atspi/atspi-private.h
Commit message (Collapse)AuthorAgeFilesLines
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-4/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* 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
|
* Support mutter remote desktop interface for key/mouse eventsMike Gorse2019-08-051-0/+1
| | | | | | | | | | | | | | Mutter now has a remote desktop interface with methods to synthesize keyboard and mouse events. This functionality has not been available through AT-SPI on wayland since it uses X-specific functions. Also add atspi_set_reference_window. Probably a work in progress; doesn't appear to be behaving as intended. Also requires that introspection be enabled on gnome-shell. Ie, gsettings set org.gnome.shell introspect true https://bugzilla.gnome.org/show_bug.cgi?id=709999 https://gitlab.gnome.org/GNOME/at-spi2-core/issues/14
* Allow caching of data sent with events and requesting such dataMike Gorse2014-02-011-0/+1
| | | | | | | | | | | | | Add atspi_event_listener_register_full, to request that particular data be sent with an event, and cache the data for the duration of the event callback. This also extends the D-Bus protocol, adding an a{sv} to an event to send this data along, but we will still read events without this array added for backwards compatibility (and compatibilllity with QT-AT-SPI, which does not send this data for now). https://bugzilla.gnome.org/show_bug.cgi?id=708695
* Include config.h in private headerMike Gorse2013-09-021-0/+1
| | | | | | | | atspi-misc.c was not including config.h anywhere, resulting in HAVE_X11 not being defined, so X would not be queried when fetching the accessibility bus address. https://bugzilla.gnome.org/show_bug.cgi?id=707084
* Re-register keystroke listeners if the registry goes away and returnsMike Gorse2012-11-201-0/+4
|
* Initial pass at adding i18n and proper object disposalMike Gorse2010-12-291-0/+2
| | | | | | | Objects are now "disposed" when RemoveAccessible is received or the application goes away. This allows the objects to be dereferenced and properly cleaned up. Also fix some related bugs and add i18n. Some reference leaks remain, however.
* Various fixesMike Gorse2010-11-291-0/+1
| | | | | | | Events and DeviceEvents are now sent with transfer full to work around a possible pygi bug. Various other fixes.
* Some work on event support; many bug fixesMike Gorse2010-11-051-1/+2
|
* Initial commit, not even close to being usable yetMike Gorse2010-10-261-0/+33