summaryrefslogtreecommitdiff
path: root/atspi/atspi-stateset.c
Commit message (Collapse)AuthorAgeFilesLines
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-21/+20
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Docs: Move to gi-docgenThomas Booker2022-09-281-0/+7
|
* 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
|
* Don't crash when trying to set an invalid stateSamuel Thibault2015-11-141-4/+4
| | | | https://bugzilla.gnome.org/show_bug.cgi?id=757915
* Unref enum type classes when we're done with themMike Gorse2014-07-191-2/+5
|
* Merge branch 'enum-types'Mike Gorse2013-05-101-59/+12
|\ | | | | | | | | | | Conflicts: atspi/Makefile.am atspi/atspi-accessible.c
| * Enum clean-upsenum-typesMike Gorse2011-05-291-58/+12
| | | | | | | | | | | | | | | | | | | | 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.
* | Fix some annotations compilation warningsJavier Hernández2012-09-041-23/+7
| |
* | Code clean-upsMike Gorse2012-07-181-5/+1
| | | | | | | | | | There isn't really any point in checking for GLib functions returning NULL due to lack of memory, since they just abort instead.
* | Improving atspi-stateset documentation.Aline Bessa2011-08-231-19/+41
|/
* Revert "Remove redundant tables of state and role names"Mike Gorse2011-05-291-12/+58
| | | | This reverts commit 73b811b78954dfb0f8b407354c146d9fbd47dea3.
* Remove redundant tables of state and role namesMike Gorse2011-05-251-58/+12
| | | | | | | Use the generated enum type to convert state names to numeric values rather than a string table that needs to be maintained in parallel. Also, remove atspi_role_get_name since it was unused, marked deprecated, and relied on a string table which is now redundant with the enum type.
* Fix a possible sign issue with state setsMike Gorse2011-03-091-1/+1
|
* Update copyright and add some missing license infoMike Gorse2011-01-311-0/+24
|
* Fix stupid 32 -> 64-bit casting problems with state setsMike Gorse2011-01-101-4/+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.
* Really commit fixes; make unit tests passMike Gorse2010-11-281-2/+2
|
* State and action fixesMike Gorse2010-11-241-4/+161
|
* Some work on event support; many bug fixesMike Gorse2010-11-051-1/+110
|
* Initial commit, not even close to being usable yetMike Gorse2010-10-261-0/+28