summaryrefslogtreecommitdiff
path: root/gtk/a11y/gtklinkbuttonaccessible.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove ATKEmmanuele Bassi2020-07-261-57/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To build a better world sometimes means having to tear the old one down. -- Alexander Pierce, "Captain America: The Winter Soldier" ATK served us well for nearly 20 years, but the world has changed, and GTK has changed with it. Now ATK is mostly a hindrance towards improving the accessibility stack: - it maps to a very specific implementation, AT-SPI, which is Linux and Unix specific - it requires implementing the same functionality in three different layers of the stack: AT-SPI, ATK, and GTK - only GTK uses it; every other Linux and Unix toolkit and application talks to AT-SPI directly, including assistive technologies Sadly, we cannot incrementally port GTK to a new accessibility stack; since ATK insulates us entirely from the underlying implementation, we cannot replace it piecemeal. Instead, we're going to remove everything and then incrementally build on a clean slate: - add an "accessible" interface, implemented by GTK objects directly, which describe the accessible role and state changes for every UI element - add an "assistive technology context" to proxy a native accessibility API, and assign it to every widget - implement the AT context depending on the platform For more information, see: https://gitlab.gnome.org/GNOME/gtk/-/issues/2833
* Add annotations in a11y headersMatthias Clasen2013-05-051-0/+1
|
* Move single-include guards inside include guardsMatthias Clasen2012-12-281-3/+3
| | | | | | gcc has optimizations for include guards that only work if they are outermost in the the header. https://bugzilla.gnome.org/show_bug.cgi?id=689810
* Add single-include guards to a11y headersMatthias Clasen2012-12-271-0/+4
| | | | More preparation for installing these headers.
* Fix inter-header includesMatthias Clasen2012-12-271-1/+1
| | | | | | | Since we are going to install these headers soon, we need to make their mutual includes work in the installed location as well. Also, avoid including individual gtk headers, to avoid trouble with single-include guards.
* CosmeticsMatthias Clasen2012-12-271-1/+1
| | | | Replace GAIL in top comments by 'GTK+ - accessibility implementations'.
* Make accessible implementations publicMatthias Clasen2012-12-271-2/+2
| | | | | | | | | | | | | | This commit exposes the get_type() functions and standard headers for accessible implementations. This makes it possible to derive from the GTK accessible implementations without GType magic tricks. This is necessary, because we require the a11y type hierarchy to be parallel to the widget type hierarchy. So, if you derive a widget and need to adjust its a11y implementation, you have to be able to derive its accessible implementation. This commit probably exposes more than is absolutely necessary, it also exposes accessibles of widgets that are unlikely candidates for deriving from.
* GtkLinkButtonAccessible: add a private structMatthias Clasen2012-10-141-3/+4
| | | | | Move instance fields to a private struct, in preparation for installing a11y headers.
* Change FSF AddressJavier Jardón2012-02-271-3/+1
|
* Reduce the number of unwanted exportsMatthias Clasen2011-07-091-2/+2
| | | | | _-prefix most of the get_type functions in a11y/. There are still some more symbols left.
* Convert GailButton to GtkButtonAccessibleMatthias Clasen2011-07-051-3/+3
| | | | | | This drops the AtkText implementation, and also strips handling of children out. Instead of listening for enter/leave/press/released, just listen for state changes on the widget.
* Convert GailLinkButton to GtkLinkButtonAccessibleMatthias Clasen2011-07-051-0/+53