summaryrefslogtreecommitdiff
path: root/atspi/atspi.h
Commit message (Collapse)AuthorAgeFilesLines
* Reformat all the *.[ch] files with clang-formatFederico Mena Quintero2022-12-061-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
|
* Add AtspitableCell, tracking the new atk interfaceMike Gorse2014-02-181-0/+1
|
* Enum clean-upsenum-typesMike Gorse2011-05-291-0/+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.
* Revert "Install enum header, and try to get role name from enum"Mike Gorse2011-05-291-2/+0
| | | | This reverts commit 9ddf777a096440afe521c094544942e85e3ee838.
* Install enum header, and try to get role name from enumMike Gorse2011-05-251-0/+2
| | | | | | | | Have atspi_accessible_get_role_name try to use the internal string associated with the accessible's role rather than calling GetRoleName. This avoids making a DBus call when the role is cached. Also, atspi.h now includes atspi-enum-types.h, and the latter is now installed.
* Bump version, remove dbus-glib dependency, and add pc fileMike Gorse2011-03-211-0/+1
| | | | | | Add in a modified version of dbus-gmain.c so that we can stop dependeing on dbus-glib and include a currently unreviewed fix for FDO#35115. Also add a pc file and bump version to 1.91.92.
* Really commit fixes; make unit tests passMike Gorse2010-11-281-0/+2
|
* Add first pass at MatchRule/Collection implementationMike Gorse2010-11-231-0/+2
|
* Add Hypertext and Hyperlink and some refactoring to support themMike Gorse2010-11-201-0/+2
| | | | | | AtspiAccessible is now derived from a base class called AtspiObject which defines the object's application and object path, since this is common with AtspiHyperlink.
* Add Action, Document, EditableText, Image, and Value interfacesMike Gorse2010-11-191-0/+5
|
* Add selection interfaceMike Gorse2010-11-191-0/+1
|
* Add table interfaceMike Gorse2010-11-191-0/+1
|
* Add first pass at text interfaceMike Gorse2010-11-191-0/+1
|
* Some work on event support; many bug fixesMike Gorse2010-11-051-1/+2
|
* Started work on component interface; various fixes and cleanupsMike Gorse2010-11-011-1/+2
|
* Initial commit, not even close to being usable yetMike Gorse2010-10-261-0/+36