summaryrefslogtreecommitdiff
path: root/atspi/atspi-registry.h
Commit message (Collapse)AuthorAgeFilesLines
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-20/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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/+2
| | | | | | | | | | | | | | 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
* Merge branch 'enum-types'Mike Gorse2013-05-101-1/+2
|\ | | | | | | | | | | Conflicts: atspi/Makefile.am atspi/atspi-accessible.c
| * Enum clean-upsenum-typesMike Gorse2011-05-291-1/+2
| | | | | | | | | | | | | | | | | | | | Generate enum types where appropriate. Fix prototypes where a method took a "gint" that was really a bitflag. Remove tables of state and role names, since these are now redundant with data from the generated enums and would need to be maintained in parallel. These changes were originally in master but have been backed out since they break compatibility with pygobject 2.26.0, which some users are still using.
* | Add G_BEGIN_DECLS and G_END_DECLS macros for prototypes to fix c++ linkageMike Gorse2012-05-211-0/+4
|/
* Revert "Clean up enums"Mike Gorse2011-05-291-2/+1
| | | | | | | | | | | | | | This reverts commit a12d7458110c57e183916255d701b1e0d7c070e1. Conflicts: atspi/atspi-constants.h Reverting these enum clean-ups for now, since they require pygobject 2.28.0 for pyatspi, at least one user is pulling git while using pygobject 2.26.0, upgrading pygobject is likely to be a complicated process that may break things, and these changes are only code clean-ups that will not really benefit users. Will reinstate in a separate branch and merge some time in the future.
* Clean up enumsMike Gorse2011-05-241-1/+2
| | | | | | | Use glib-enums to generate GTypes for enums, and modify enum definitions so that they will be marked as bitflags where appropriate. This helps with introspection and allows functions that take flags to be prototyped as such rather than being marked as taking a gint.
* bug 643384 - atspi_register_keystroke_listener() should take a bitmask not ↵Trevor Saunders2011-03-011-1/+1
| | | | AtspiKeyListenerSyncType.
* Fix keystroke deregister method.Eitan Isaacson2011-01-071-0/+1
|
* Various fixesMike Gorse2010-11-291-2/+4
| | | | | | | 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-7/+9
|
* Initial commit, not even close to being usable yetMike Gorse2010-10-261-0/+66